2009-01-22 Michael Natterer <mitch@imendio.com>
* gtk/gtkicontheme.c (gtk_icon_theme_has_icon): g_return_if_fail()
on icon_name != NULL so we get a warning instead of a crash here.
svn path=/trunk/; revision=22174
+2009-01-22 Michael Natterer <mitch@imendio.com>
+
+ * gtk/gtkicontheme.c (gtk_icon_theme_has_icon): g_return_if_fail()
+ on icon_name != NULL so we get a warning instead of a crash here.
+
2009-01-21 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
GList *l;
g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), FALSE);
-
+ g_return_val_if_fail (icon_name != NULL, FALSE);
+
priv = icon_theme->priv;
ensure_valid_themes (icon_theme);